Skip to main content

PowOperator

Type

operator

Summary

Binary exponentiation operation.

Syntax

<Left> ^ <Right>

Description

Binary exponentiation operation.

Parameters

NameTypeDescription

Left

An expression that evaluates to a number.

Right

An expression that evaluates to a number.

Examples

variable tVar as Number
put 5^2 into tVar -- tVar contains 25

Value

NameTypeDescription

return

The result of raising Left to the power Right.

Thank you for your feedback!

Was this page helpful?